 /* faculty  */
        .faculty {
            width: 80%;
            margin: auto;
            text-align: center;
            padding: 60px 0;
        }

        .faculty h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .faculty p {
            color: #777;
            margin-bottom: 40px;
        }

        /* ROW */
        .faculty-row {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        /* CARD */
        .faculty-card {
            flex: 1;
            min-width: 250px;
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .faculty-card:hover {
            transform: translateY(-5px);
        }

        /* IMAGE */
        .faculty-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }

        /* TEXT */
        .faculty-card h3 {
            color: #333;
            margin-bottom: 10px;
        }

        .faculty-card p {
            color: #555;
            font-size: 15px;
            margin-bottom: 5px;
        }